projects
/
project
/
bcm63xx
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
805e3e0
)
power: twl6030: fix code refactoring
author
Nicolae Rosia
<
[email protected]
>
Thu, 13 Oct 2016 10:47:53 +0000
(13:47 +0300)
committer
Tom Rini
<
[email protected]
>
Mon, 24 Oct 2016 12:04:38 +0000
(08:04 -0400)
Commit
a85362fb3e1fc7833723accddbbae431091d06b8
refactored the code
but the register read ended up in the wrong if branch.
Currently, the else branch checks a variable which is always 0.
Signed-off-by: Nicolae Rosia <
[email protected]
>
Reviewed-by: Tom Rini <
[email protected]
>
drivers/power/twl6030.c
patch
|
blob
|
history
diff --git
a/drivers/power/twl6030.c
b/drivers/power/twl6030.c
index 05c79be98f801554662e1483944eb841c2a00a1c..cd532008bdd001184a93eb83b22b0e343b59c227 100644
(file)
--- a/
drivers/power/twl6030.c
+++ b/
drivers/power/twl6030.c
@@
-231,9
+231,9
@@
void twl6030_power_mmc_init(int dev_index)
/* Enable P1 output for VMMC */
twl6030_i2c_write_u8(TWL6030_CHIP_PM, TWL6030_VMMC_CFG_STATE,
TWL6030_CFG_STATE_P1 | TWL6030_CFG_STATE_ON);
-
- twl6030_i2c_read_u8(TWL6030_CHIP_PM, TWL6030_PH_STS_BOOT, &value);
} else if (dev_index == 1) {
+ twl6030_i2c_read_u8(TWL6030_CHIP_PM, TWL6030_PH_STS_BOOT,
+ &value);
/* BOOT2 indicates 1.8V/2.8V VAUX1 for eMMC */
if (value & TWL6030_PH_STS_BOOT2) {
/* 1.8V voltage output for VAUX1 */